home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tandy Sensation 2
/
Tandy Sensation II Boot Disk.img
/
SETUPDOS.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-08-03
|
886b
|
41 lines
@echo off
set drv=D:
if exist D:\DOS60\DISK1\COMMAND.COM goto runset
set drv=E:
if exist E:\DOS60\DISK1\COMMAND.COM goto runset
set drv=F:
if exist F:\DOS60\DISK1\COMMAND.COM goto runset
set drv=C:
if exist C:\DOS60\DISK1\COMMAND.COM goto runset
echo CD-ROM System Disc not found.
goto exit
:runset
setup %drv% \DOS60 %1
if errorlevel 99 goto instdrvs
goto exit
:instdrvs
echo.
echo Installing utilities, please wait ...
echo.
if not exist c:\dos\command.com md c:\dos
copy a:\dos c:\dos > nul
xcopy a:\sb16 c:\sb16\ /s/e/v > nul
copy a:\autodsk.bat c:\autoexec.bat > nul
copy a:\confdsk.sys c:\config.sys > nul
cls
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo Setup is now complete. Please remove any floppy
echo disks from your drives and press any key to
echo start MS-DOS version 6.0.
reboot
:exit